home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000269_fdc@columbia.edu_Fri Mar 10 16:36:26 2006.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: No response on terminal line connection
  5. Date: 10 Mar 2006 21:36:20 GMT
  6. Organization: Columbia University
  7. Lines: 52
  8. Message-ID: <slrne13sak.s6r.fdc@sesame.cc.columbia.edu>
  9. References: <JNgQf.5$Km6.3@trnddc01>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1142026580 6942 128.59.59.56 (10 Mar 2006 21:36:20 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 10 Mar 2006 21:36:20 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15520
  17.  
  18. On 2006-03-10, Kelvin Smith <smith.fcs1111@snet.net> wrote:
  19. : I'm trying to upgrade from MS-DOS Kermit v3.14 to K95 v2.1.3 on a PC that is 
  20. : wired directly to a terminal line. Everything is running fine with MS-DOS 
  21. : Kermit. However, with K95, I'm getting no response. I'm running the K95 GUI 
  22. : directly. SHO COMM reports the following settings:
  23. :
  24. : Communications Parameters:
  25. :  Port: com1, speed: 19200, mode: local, modem: none
  26. :  Parity: none, stop-bits: (default) (8N1)
  27. :  Duplex: full, flow: rts/cts, handshake: none
  28. :
  29. You have specified RTS/CTS (hardware flow control)...
  30.  
  31. :  Carrier-watch: off, close-on-disconnect: off
  32. :  Terminal bytesize: 8, escape character: 29 (^])
  33. :  Priority: regular
  34. :
  35. :  Carrier Detect      (CD):  Off
  36. :  Dataset Ready       (DSR): Off
  37. :  Clear To Send       (CTS): Off
  38. :  Ring Indicator      (RI):  Off
  39. :
  40. But no modem signals are seen by Kermit.  When RTS/CTS flow control is
  41. selected, nothing can be sent out the port unless the CTS signal is On.
  42.  
  43. :  Data Terminal Ready (DTR): (unknown)
  44. :  Request To Send     (RTS): (unknown)
  45. :
  46. : When I plug a breakout box into the connection, the lights all look 
  47. : appropriate (I get the same change of lights when K95 starts up as with 
  48. : MS-DOS Kermit), but there is no flickering of lights if I hold down a key.
  49. :
  50. : I'm starting up with the default initialization file and the following 
  51. : commands:
  52. :
  53. : set port com1
  54. : set speed 19200
  55. : set modem none
  56. : set carrier-watch off
  57. :
  58. : I'm mystified as to why I'm getting no response. I presume there must be 
  59. : some setting(s) that I'm not aware of.
  60. :
  61. Try "set flow none" or "set flow xon/xoff".  And since there is no Carrier
  62. signal either, you might also need "set carrier-watch off".
  63.  
  64. But maybe the real problem is that you need to use the TAPI device instead
  65. of the "DOS" device.  See the Kermit 95 FAQ:
  66.  
  67.   http://www.columbia.edu/kermit/k95faq.html#comport
  68.  
  69. - Frank